body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Siyah arka plan */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.form-box {
    background-color: #444444; /* Gri çerçeve */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.textarea {
    width: 400px; /* Genişlik */
    height: 100px; /* Yükseklik, 2-3 satır görünüm için */
    color: #ffffff; /* Metin rengi */
    background-color: #666666; /* Arka plan rengi */
    padding: 10px; /* İç boşluk */
    font-size: 16px; /* Font boyutu */
    margin-bottom: 20px; /* Alt boşluk */
    border: none;
    border-radius: 15px;
    outline: none;
    resize: none; /* Kullanıcının boyutlandırmasını engeller */
}

.textarea:disabled {
    color: #ffffff; /* Devre dışı olduğunda metnin rengi */
    background-color: #000000; /* Arka plan rengi */
}

.button-group {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #888888;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #bbbbbb;
}

.question-text {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}
